Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

14 rader
400 B

  1. import fetch from 'node-fetch'
  2. export default eventHandler(async (req) => {
  3. const id = req.context.params?.id || ''
  4. const url = `https://api.themoviedb.org/3/movie/${id}`
  5. const config = useRuntimeConfig(req)
  6. const response = await fetch(url, {
  7. method: 'get',
  8. headers: { 'Content-Type': 'application/json', 'Authorization': config.API_BEARER }
  9. })
  10. return await response.json()
  11. })